home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
SERIUS
/
SERIUS_F
/
SERIUS_#
/
NUMBER.H
next >
Wrap
Text File
|
1992-01-23
|
573b
|
31 lines
// Number.h
// This file contains the C language data
// structures for the 2.2 Number object.
// ⌐ 1989-92 Serius Corporation
#define numNumDatas 2
typedef enum {wholeType, floatingType} NumberClass;
typedef union {
long L;
extended R;
} MultiNumber;
typedef struct {
short font;
short size;
Style fontStyle;
short just;
short dummy;
Boolean editable;
NumberClass class;
MultiNumber value;
RGBColor iColor;
Str255 format;
Boolean frame;
short version;
Boolean changed;
} NumberRecord, *NumberPtr;